home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
SWAG
/
SWAGA_C
/
CURSOR.SWG
/
0006_Cursor Show-Hide #2.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1993-05-28
|
432b
|
17 lines
Procedure HideCursor; assembler;
asm
mov ah,$01 { Function number }
mov ch,$20
mov cl,$00
Int $10 { Call BIOS }
end; { HideCursor }
Procedure RestoreCursor; assembler;
asm
mov ah,$01 { Function number }
mov ch,$06 { Starting scan line }
mov cl,$07 { Ending scan line }
int $10 { Call BIOS }
end; { RestoreCursor }